home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
msdos
/
animutil
/
fastgfx
/
fg303d
/
exbas.arj
/
FGDOC
/
EXAMPLES
/
BASIC
/
06-04.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1993-09-30
|
297 b
|
22 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
OldMode = FGgetmode
NewMode = FGautomode
FGsetmode NewMode
FGinitw
FGsetworld -10.0, 10.0, -10.0, 10.0
FGsetcolor 15
FGmovew 0.0, 10.0
FGdraww 0.0, -10.0
FGmovew -10.0, 0.0
FGdraww 10.0, 0.0
FGwaitkey
FGsetmode OldMode
FGreset
END